home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / usr / bin / batch < prev    next >
Encoding:
Text File  |  2007-02-20  |  152 b   |  9 lines

  1. #! /bin/sh -e
  2. if [ "$#" -gt 0 ]; then
  3.     echo batch accepts no parameters
  4.     exit 1
  5. fi
  6. prefix=/usr
  7. exec_prefix=${prefix}
  8. exec ${exec_prefix}/bin/at -qb now
  9.